/* ==========================
   Root & General Styles
   ========================== */
:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --light-bg: #f8f9fa;
    --dark-bg: #343a40;
}

body {
    font-family: "Open Sans", sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fff;
    margin: 0;
    padding: 0;
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 600;
    color: var(--primary-color);
}

/* ==========================
   Hero Section
   ========================== */
.home-internet-hero {
    position: relative;
    height: 500px;
    /* width: 1500px; */
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url("https://images.unsplash.com/photo-1582213782179-e0d5336bbd6a?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3")
            no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 15px;
    flex-direction: column;
}

.home-internet-hero h1 {
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    font-weight: 700;
    margin-bottom: 15px;
}

.home-internet-hero p {
    font-size: clamp(1rem, 2.2vw, 1.15rem);
    max-width: 800px;
    margin: 0 auto 30px auto;
}

/* Hero Buttons Container */
.home-internet-hero .hero-buttons {
    display: flex;
    flex-wrap: wrap; /* wrap on small screens */
    justify-content: center;
    gap: 15px; /* space between buttons */
}

/* Hero Buttons */
.home-internet-hero .hero-buttons a {
    display: inline-block;
    font-weight: 600;
    padding: clamp(8px, 1.2vw, 12px) clamp(20px, 2.5vw, 25px); /* responsive padding */
    font-size: clamp(0.85rem, 1.5vw, 1rem); /* responsive font */
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
}

/* Primary Button */
.home-internet-hero .hero-buttons a.btn-primary {
    background-color: #004494;
    border: 2px solid #004494;
    color: white;
}

.home-internet-hero .hero-buttons a.btn-primary:hover {
    background-color: #003366;
}

/* Outline Button */
.home-internet-hero .hero-buttons a.btn-outline-light {
    border: 2px solid white;
    color: white;
}

.home-internet-hero .hero-buttons a.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Stack buttons vertically on very small screens */
@media (max-width: 480px) {
    .home-internet-hero .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .home-internet-hero .hero-buttons a {
        width: 100%;
        font-size: 0.85rem;
        padding: 8px 0;
    }
}

/* ==========================
   Feature Boxes
   ========================== */
.feature-box {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    margin-bottom: 30px;
    height: 100%;
}

.feature-box .icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-box h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-box p {
    font-size: 1rem;
    color: #666;
}

/* ==========================
   Pricing Plans
   ========================== */
.price-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.price-card.recommended {
    border: 3px solid var(--primary-color);
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.price-card h4 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.price-card .speed {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.price-card .price {
    font-size: 1.5rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 25px;
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    flex-grow: 1;
}

.price-card ul li {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #666;
}

.price-card ul li i {
    margin-right: 8px;
    color: green;
}

/* ==========================
   How It Works
   ========================== */
.how-it-works-step {
    text-align: center;
    margin-bottom: 40px;
}

.how-it-works-step .icon {
    background-color: var(--primary-color);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

.how-it-works-step h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.how-it-works-step p {
    font-size: 1rem;
    color: #666;
}

/* ==========================
   FAQ
   ========================== */
.accordion-item {
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    font-weight: 600;
    color: var(--primary-color);
}

.accordion-button:not(.collapsed) {
    background-color: var(--light-bg);
    color: var(--primary-color);
}

.accordion-body {
    color: #555;
}

/* ==========================
   Call To Action
   ========================== */
.cta-section a.btn {
    padding: clamp(8px, 1.5vw, 12px) clamp(20px, 3vw, 25px);
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    border-radius: 50px;
    margin: 5px;
    font-weight: 600;
}

.cta-section a.btn-light {
    color: #004494;
    background-color: white;
    border: 2px solid white;
}

.cta-section a.btn-light:hover {
    background-color: #f0f0f0;
}

.home_internet_btn {
    background-color: #004494;
    border-color: #004494;
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 20px;
}

.home_internet_btn2 {
    border: 2px solid;
    border-color: #ffffff;
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 20px;
}

/* ==========================
   Responsive Media Queries
   ========================== */
@media (max-width: 1200px) {
    .home-internet-hero {
        height: 400px;
    }
}

@media (max-width: 992px) {
    .home-internet-hero {
        height: 350px;
    }

    .feature-box h3,
    .how-it-works-step h3,
    .price-card h4 {
        font-size: 1.3rem;
    }

    .price-card .speed {
        font-size: 1.6rem;
    }

    .price-card .price {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .home-internet-hero {
        height: 300px;
        padding: 0 10px;
    }

    .home-internet-hero h1 {
        font-size: 2rem;
    }

    .home-internet-hero p {
        font-size: 0.95rem;
    }

    .home-internet-hero .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .price-card {
        padding: 20px;
    }

    .feature-box {
        padding: 20px;
    }

    .how-it-works-step .icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    .home_internet_btn {
        background-color: #004494;
        border-color: #004494;
        color: white;
        text-decoration: none;
        font-weight: 600;
        padding: 10px 25px;
        border-radius: 50px;
        font-size: 12px;
    }

    .home_internet_btn2 {
        border: 2px solid;
        border-color: #ffffff;
        color: white;
        text-decoration: none;
        font-weight: 600;
        padding: 10px 25px;
        border-radius: 50px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .home-internet-hero {
        height: 250px;
    }

    .home-internet-hero h1 {
        font-size: 1.5rem;
    }

    .home-internet-hero p {
        font-size: 0.85rem;
    }

    .price-card {
        padding: 15px;
    }

    .feature-box {
        padding: 15px;
    }

    .how-it-works-step .icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}
